home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Source Code / C ++ / Applications / Conic Sections 0.9.2 / Include / AboutContent.h next >
Encoding:
Text File  |  1997-07-20  |  318 b   |  19 lines  |  [TEXT/CWIE]

  1. //Copyright (c) 1997 Aidan Cully
  2. //All rights reserved
  3.  
  4. #ifndef __ABOUTCONTENT_H
  5. #define __ABOUTCONTENT_H
  6.  
  7. #include "CLLayout.h"
  8.  
  9. class TAboutContent:
  10.     public TLayoutBranch
  11. {
  12. protected:
  13.     virtual void BuildChildren();
  14. public:
  15.     TAboutContent( TLayoutBranch* );
  16.     virtual void CalcMouseMove( Point, RgnHandle );
  17. };
  18.  
  19. #endif